home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / proc / escape.h < prev    next >
C/C++ Source or Header  |  2005-10-13  |  712b  |  21 lines

  1. #ifndef PROCPS_PROC_ESCAPE_H
  2. #define PROCPS_PROC_ESCAPE_H
  3.  
  4. //#include <stdio.h>
  5. #include <sys/types.h>
  6. #include "procps.h"
  7. #include "readproc.h"
  8.  
  9. EXTERN_C_BEGIN
  10.  
  11. #define ESC_ARGS     0x1  // try to use cmdline instead of cmd
  12. #define ESC_BRACKETS 0x2  // if using cmd, put '[' and ']' around it
  13. #define ESC_DEFUNCT  0x4  // mark zombies with " <defunct>"
  14.  
  15. extern int escape_strlist(char *restrict dst, const char *restrict const *restrict src, size_t n, int *cells);
  16. extern int escape_str(char *restrict dst, const char *restrict src, int bufsize, int *maxcells);
  17. extern int escape_command(char *restrict const outbuf, const proc_t *restrict const pp, int bytes, int *cells, unsigned flags);
  18.  
  19. EXTERN_C_END
  20. #endif
  21.